home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / fract / fu1_61.lha / Formulas / MandelCrown.Form < prev    next >
Text File  |  1995-02-07  |  227b  |  29 lines

  1. MandelCrown
  2. {
  3.     {
  4.         x1=-2.5
  5.         x2= 2.5
  6.         y1=-2.0
  7.         y2= 2.0
  8.         bailout=12.6
  9.     }
  10.     {
  11.         c=pixel
  12.         z=pixel
  13.     }
  14.     {
  15.         z=z*z
  16.         z=z+c
  17.         zrea=real(z)
  18.         zrea=abs(zrea)
  19.         zima=imag(z)
  20.         zima=abs(zima)
  21.         w=zrea*zima
  22.     }
  23.     {
  24.         w>bailout
  25.     }
  26.     {
  27.     }
  28. }
  29.